home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000450_news@columbia.edu _Mon Feb 5 12:14:07 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id MAA01157 for <kermit.misc@watsun>; Mon, 5 Feb 1996 12:14:05 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id MAA20475 for kermit.misc@watsun; Mon, 5 Feb 1996 12:13:55 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Ctrl-C Seen Where No Ctrl-C Entered
  8. Date: 5 Feb 1996 17:13:27 GMT
  9. Organization: Columbia University
  10. Lines: 31
  11. Message-ID: <4f5drn$jvh@apakabar.cc.columbia.edu>
  12. References: <4eue8l$o8t@Jupiter.mcs.net>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4eue8l$o8t@Jupiter.mcs.net>,
  16. Ron Heiby <heiby@falkor.chi.il.us> wrote:
  17. : I am running a copy of MS-DOS Kermit which identifies itself as "3.14
  18. : 18 Jan 1995 patch level 0" on a Dell 486SX/25 in a Windows 3.1 DOS
  19. : window. I am running a copy of OS/2 "C-Kermit 5A(191), 24 Apr 95" on a
  20. : ThinkPad 755CE (486DX/100) under OS/2 Warp 3.0. Between these two is a
  21. : serial cable which came with the FastLynx software package (and with
  22. : which I have never had any trouble.
  23. : What I would like to do is to put the MS-Kermit into "server" mode,
  24. : and conduct all of the operations from the OS/2 session. For the most
  25. : part, this seems to work. However, I have noticed that when I attempt
  26. : to send large binary (.ZIP) files from the OS/2 to the DOS version,
  27. : after just a (smallish) portion of the file is transferred (with a
  28. : "put" command), the transfer is halted with messages to the effect
  29. : that I have aborted the transfer with a Ctrl-C. Nothing could be
  30. : further from the truth. Yesterday, I attempted such a transfer several
  31. : times with identical results. Today, I attempted such a transfer with
  32. : a different file, again with these results.
  33. This would not be happening unless you had told the file sender to
  34.  
  35.   set control unprefix 3 131
  36.  
  37. So tell the file sender to:
  38.  
  39.   set control prefix 3 131
  40.  
  41. to undo this effect.
  42.  
  43. - Frank